@charset "utf-8";



.slogan{
	line-height: 2vw;
	text-align: center;
	margin: 4vw 0 2vw 0;
	font-size: 1.2vw;
}

.boxes{
	display: flex;
	justify-content: center;
	margin-bottom: 1vw;
}
.prdcbox {
	position: relative;
	margin: 1vw;
	box-shadow: 1px 1px 5px #aaa;
	border: solid 1px #aaa;
	transition: margin 1s, transform 0.2s linear 0.1s;
	width: 15%;
	background-color: white;
	padding: 0.4vw;
}
.prdcbox:hover{
	transform:scale(1.09);
}
.prdcbox p {
	border: solid 1px #aaa;
	text-align: center;
	font-size: 1.4vw;
	padding: 2vw 0.2vw;
	margin: 0;
	min-height: 4vw;
}
.prdcbox img {
	width: 100%;
}


